/* Estilos específicos para la documentación de rescate */
.page-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    max-width: 1400px; /* Ancho extendido para la tabla */
    margin: 40px auto;
    line-height: 1.6;
}

.page-content h2 {
    font-size: 2.2rem;
    color: #c0392b; /* Rojo fuerte para resaltar la seguridad/emergencia */
    border-bottom: 3px solid #e74c3c;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.page-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-align: justify;
}

/* Estilos de la Tabla de Rescate */
.rescue-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.rescue-table thead tr {
    background-color: #2c3e50; /* Azul oscuro/gris */
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.rescue-table th,
.rescue-table td {
    padding: 10px 10px; /* Padding reducido para meter 6 columnas */
    border: 1px solid #ddd;
    vertical-align: top;
}

/* Columna de Nombre */
.rescue-table td:nth-child(1) {
    font-weight: bold;
    color: #2c3e50;
    width: 15%;
}

/* Columna AÑADIDA: Imagen */
.rescue-table th:nth-child(2),
.rescue-table td:nth-child(2) {
    width: 8%; /* Ancho ajustado para el placeholder */
    text-align: center;
    font-size: 0.8em;
    color: #95a5a6; /* Gris claro para el placeholder */
}

/* Columna de Norma */
.rescue-table td:nth-child(6) {
    font-style: italic;
    color: #2980b9;
    width: 12%;
    text-align: center;
}

/* Estilo para filas pares (Alternating row colors) */
.rescue-table tbody tr:nth-of-type(even) {
    background-color: #f8f8f8;
}

.rescue-table tbody tr:hover {
    background-color: #ffebee;
}